home *** CD-ROM | disk | FTP | other *** search
/ Chip 2006 July / CHIP 2006-07.2.iso / program / web_gelistirme / easyphp1-7_setup.exe / {app} / phpmyadmin / phpinfo.php < prev    next >
Encoding:
PHP Script  |  2003-09-07  |  408 b   |  21 lines

  1. <?php
  2. /* $Id: phpinfo.php,v 1.9 2002/10/23 04:17:43 robbat2 Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * Gets core libraries and defines some variables
  8.  */
  9. require('./libraries/grab_globals.lib.php');
  10. require('./libraries/common.lib.php');
  11.  
  12.  
  13. /**
  14.  * Displays PHP information
  15.  */
  16. $is_superuser = @PMA_mysql_query('USE mysql', $userlink);
  17. if ($is_superuser || $cfg['ShowPhpInfo']) {
  18.     phpinfo();
  19. }
  20. ?>
  21.